RegionLog
Members
A log of an event that happened in a region, such as a player spawning into or warping out of the region.
Desc
A description of the event that happened in the region.
It is of the type string
.
Event
The type of event that happened in the region.
It is of the type RegionLogType
.
TimeAgo
The time since the event happened, in seconds. Does not update in real time.
It is of the type number
.
Luau Type
This is the luau type for RegionLog
. It may help clear up mistranslations from the raw data to the wiki page (as it is an automatic process).
export type RegionLog = {
TimeAgo: number,
Event: RegionLogType,
Desc: string,
}